From 147644805d720d607c140ddd2d17e548a1d2519c Mon Sep 17 00:00:00 2001 From: debris Date: Fri, 28 Jul 2017 11:19:54 +0200 Subject: [PATCH] Fixed test_virtual_manifest_all_implied test --- tests/test.rs | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/tests/test.rs b/tests/test.rs index fb3dad0d3..d0d577d09 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -2482,20 +2482,9 @@ fn test_virtual_manifest_all_implied() { "#); assert_that(p.cargo_process("test"), - execs().with_status(0).with_stdout_contains("\ -running 1 test -test b ... ok - -test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured - -") - .with_stdout_contains("\ -running 1 test -test b ... ok - -test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured - -")); + execs().with_status(0) + .with_stdout_contains("test a ... ok") + .with_stdout_contains("test b ... ok")); } #[test] -- 2.30.2